 body {
    background-image: url('images (10.jpeg');
    background-size: cover;
    color:#fafafa
    
} 
*{
    scroll-behavior: smooth;
}
  /* Apply the animation to all elements */ * { animation: dropDown 4s ease-out; } /* Define the drop-down animation */
  
  @keyframes dropDown {
    0% { transform: translateY(-100%); opacity: 0; } 
    5% { transform: translateY(-90%); opacity: 0; } 
    100% { transform: translateY(0); opacity: 1; }
} 
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.form-popup {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    border-radius: 15px;
    transform: translateY(-50%); /* Centers the form vertically */
     background-image: url('fotis-fotopoulos-LJ9KY8pIH3E-unsplash22.jpg');
     background-color: rgb(22, 193, 232);
    border: 1px solid #ccc;
    padding: 20px;
    z-index: 1000;
    width: 500px;
    color: #fafafa;
    animation: slideIn 2s ease-in-out forwards; /* Trigger animation */

}

@keyframes slideIn {
    0% {
      left: -100%; /* Start completely off-screen */
    }
    100% {
      left: 50%; /* End at the center */
      transform: translateX(-50%) translateY(-50%);
    }
  }
.form-content {
    display: flex;
    flex-direction: column;
}

.form-content label {
    margin-top: 10px;
}

.form-content input {
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.form-content button {
    margin-top: 15px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    font-size: 16px;
}

.form-content button:hover {
    background-color: #0056b3;
}

.signup {
    text-align: center;
    margin-top: 10px;
}

.signup a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.signup a:hover {
    text-decoration: underline;
}

.close-btn {
    cursor: pointer;
    font-size: 24px;
    text-align: right;
}

.card-text {
    color: black;
}

.card-title {
    color: brown;
    font-family: 'Courier New', Courier, monospace;
    font-size: larger;
}

.notes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.note {
    background-color: rgb(90, 231, 200);
    padding: 20px;
    margin: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 450px;
    text-align: left;
}
.button1{
    padding: 10px 20px;
    border: none;
    border-radius: 7px;
    background-color: #2382e8;
    color: white;
    cursor: pointer;
    font-size: 16px;
}
.button1:hover{
    animation: slide 1s infinite;
}
@keyframes slide {
    0% {
     background-color: #ea0c14;
    }
    50%{
        background-color: rgb(132, 198, 198);
    }
    100% {
      background-color: rgb(72, 89, 91);
    }
  }
.button2{
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #fa6424;
    color: white;
    cursor: pointer;
    font-size: 16px;
}
.button3{
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #ea0c14;
    color: white;
    cursor: pointer;
    font-size: 16px;
}
.button4{
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #7ca6a9;
    color: white;
    cursor: pointer;
    font-size: 16px;
    align-items:flex-end;
}.button4 :hover{
    font-weight: bold;
}

.button5{    
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #f20c33;
    color: white;
    cursor: pointer;
    font-size: 16px;
    align-items:flex-end;
}
.button6{    
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #6aa670;
    color: white;
    cursor: pointer;
    font-size: 16px;
    align-items:flex-end;
}

.button6 :hover{
    font-weight: bold;
}


input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
option{
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;

}

.bank-container {
    display: flex;
    justify-content: space-between;
}

.bank-container input {
    width: 100%;
}

.notification {
      background: #e8f0fe;
      border: 1px solid #90caf9;
      padding: 10px;
      margin-bottom: 10px;
      border-radius: 4px;
    }
    .sectionn {
        background: #fff;
        padding: 20px;
        margin-bottom: 20px;
        border-radius: 8px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
      }
      .sectionn h3 { margin-bottom: 15px; }
    
